home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1999 February
/
EnigmA AMIGA RUN 34 (1999)(G.R. Edizioni)(IT)[!][issue 1999-02].iso
/
earcd
/
devel
/
wild
/
support
/
htmltoguide.bas
< prev
next >
Wrap
BASIC Source File
|
1999-01-01
|
319b
|
20 lines
WINDOW 1,"H2G"
HTMLIN$="hd1:h.html"
'$include basu:_findchar.bas
GUIDEOUT$="ram:a.guide"
OPEN HTMLIN$ FOR INPUT AS 1
REPEAT reading
IF EOF(1) THEN EXIT reading
LINE INPUT #1,a$
CM=FindChar(a$,"<")
IF CM
IF UCASE$(MID$(a$,CM,4))="<BR>"
SimpleText(MID$(a$,CM,4));
END IF
END IF
END REPEAT reading
CLOSE 1